You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 line
353 B

  1. <template>
  2. <ArticleDetailView
  3. :detail="detail"
  4. :hot-list="data?.hotList || []"
  5. :tag-list="data?.tagList || []"
  6. />
  7. </template>
  8. <script setup>
  9. import { useArticleDetail } from '~/composables/useArticle'
  10. // AI 问答详情:/info/what/{id}.html(与原 PC 站保持一致)
  11. const { data, detail } = await useArticleDetail(3)
  12. </script>